#hero {
    /* min-height: 100vh; */
    background: var(--grad);
    background-size: cover;
    min-height: 37rem;
}

.banner-content {
    padding: 5rem 0px;
}

.banner-img {
    width: 100%;
    box-shadow: 0px 16px 32px rgba(20, 27, 52, 0.4);
}

#contacts {
    background: url("../images/home/blue-shadow.png") no-repeat left top, url("../images/home/purple-shadow.png") no-repeat 100% 100%;
}

.contact-block {
    padding: 2rem;
    border-radius: 0.5rem;
    background: var(--white);
    box-shadow: 0px 0.5rem 2rem rgba(103, 113, 127, 0.08);
    width: 32%;
}

.contact-block h5 {
    font-size: 1.5rem;
    font-weight: var(--bold);
    color: var(--black);
}

.contact-block p {
    margin-bottom: 0px;
    color: var(--gray);
}

.contact-block img {
    max-width: 4.375rem;
    display: block;
    margin-bottom: 1rem;
}

.contact-holder {
    margin-top: -7rem;
    position: relative;
    z-index: 1;
}

.form-group {
    margin-top: 1.5rem;
}

.form-group label {
    font-size: 1rem;
    color: var(--black);
    font-weight: var(--medium);
    margin-bottom: 0.25rem;
}

textarea {
    resize: vertical;
    min-height: 6.25rem !important;
}

.map-holder {
    width: 100%;
    border-radius: 0.5rem;
    padding: 0.5rem 0.5rem 0px 0.5rem;
    background-color: var(--white);
    box-shadow: 0px 0.5rem 2rem rgba(103, 113, 127, 0.08);
}

iframe {
    border-radius: 0.5rem;
}


/* Media Query */

@media screen and (max-width: 768px) {
    .map-holder {
        margin-top: 3rem;
    }
}

@media screen and (max-width: 580px) {
    #hero {
        min-height: unset;
    }
    .contact-holder {
        margin-top: -3rem;
    }
    .contact-block {
        width: 100%;
        margin-top: 1rem;
    }
    form {
        padding: 2rem;
        border-radius: 0.5rem;
        background: var(--white);
        box-shadow: 0px 0.5rem 2rem rgba(103, 113, 127, 0.08);
        width: 100%;
    }
}